home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-01 | 937 b | 45 lines | [TEXT/hscd] |
- # Created by IBM WorkFrame/2 MakeMake at 01:49:27 on 11/01/94
- #
- # This makefile should be run in the following directory:
- # c:\development\m2\page
- #
- # The actions included in this makefile are:
- # BIND::Resource Bind
- # COMPILE::CLC C++
- # COMPILE::Resource Compile
- # LINK::Link
-
- .all: \
- .\PAGE.EXE
-
- .SUFFIXES:
-
- .SUFFIXES: .cpp .RC
-
- .RC.res:
- @echo WF::COMPILE::Resource Compile
- rc.exe -r %s %|fF.RES
-
- .cpp.obj:
- @echo WF::COMPILE::CLC C++
- icc.exe /J- /Q /Wall /Fi /Si /O /W2 /Gm /G5 /Gx /Ft- /C %s
-
- .\PAGE.EXE: \
- .\page.obj \
- .\Page.res \
- {$(LIB)}page.def \
- page.mak
- @echo WF::LINK::Link
- link386.exe @<<
- /PM:PM /PACKD: /E /NOI /NOE /W /NOLOGO /M:FULL +
- .\page.obj
- PAGE.EXE
- PAGE.MAP
-
- page.def;
- <<
- @echo WF::BIND::Resource Bind
- rc.exe .\Page.res PAGE.EXE
-
-
- !include page.Dep